home *** CD-ROM | disk | FTP | other *** search
- /* fputs.c - put string to file.
- (C) Copyright 1984 Gregory R. Mansfield - All Rights Reserved.
- G. R. Mansfield. 84/06/05.
- Ver 1.1-4731.
- */
-
- #include <stdio.h>
-
- fputs(s, fp) /* put string to file */
- FILE *fp;
- char *s;
- {
- while (*s) {
- if (*s == '\n')
- putc('\r', fp);
- putc(*s++, fp);
- }
- }
-